home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 40 / Issue 40.iso / pc / PCSoftware / ColdFusion Studio 4.5.1 Trial / ColdFusionStudio_Eval.exe / data1.cab / Wizards / CFML / Custom.vtm < prev    next >
Encoding:
Text File  |  2000-04-03  |  2.6 KB  |  106 lines

  1. <WIZARD name="DefaultTemplate" caption="Default HTML Template">
  2.  
  3.  
  4. <!--- wizard parameters --->
  5. <PARAM name="sDocType" value="HTML 4.0" required="true">
  6. <PARAM name="sTitle" value="">
  7. <PARAM name="bMetaDescr" value="false">
  8. <PARAM name="sMetaDescr" value="">
  9. <PARAM name="bMetaKeywords" value="false">
  10. <PARAM name="sMetaKeywords" value="">
  11.  
  12. <!--- WIZARD PAGE --->
  13.  
  14. <!--- attributes page --->
  15. <PAGE name="DocAttribs" type="DYNAMIC"
  16.     caption="HTML Document Attributes"
  17.     image="..\\images\\main.bmp">
  18.     
  19.     <PAGELAYOUT>
  20.         <CONTROL name="lblDocType" type="label"
  21.             down="10" right="10"
  22.             width="90"
  23.             caption="Document Type:"
  24.         />
  25.  
  26.         <CONTROL name="ddDocType" type="DropDown"
  27.             editable="no"
  28.             anchor="lblDocType" corner="NE" width="MAXIMUM" down="-5">
  29.                   <ITEM caption="HTML 2.0" value="HTML 2.0"/>
  30.                   <ITEM caption="HTML 3.2" value="HTML 3.2"/>
  31.                   <ITEM caption="HTML 4.0" value="HTML 4.0"/>
  32.         </CONTROL>
  33.  
  34.         <CONTROL name="lblTitle" type="label"
  35.             anchor="lblDocType" corner="SW" down="20"
  36.             width="90"
  37.             caption="Title:"
  38.         />
  39.  
  40.         <CONTROL name="tbTitle" type="TextBox"
  41.             anchor="lblTitle" corner="NE" width="MAXIMUM" down="-5"
  42.         />
  43.  
  44.         <CONTAINER name="pnlMetaDescription" type="Panel"
  45.             caption="Meta Description"
  46.             anchor="lblTitle" corner="SW" down="20"
  47.             width="MAXIMUM" maxwidthpadding="10" height="80" lfheight="90">
  48.  
  49.             <CONTROL name="chkMetaDescr" type="CheckBox"
  50.                 caption="Add meta description:"
  51.                 down="20" right="15"
  52.                 width="MAXIMUM"/>
  53.  
  54.             <CONTROL name="tbMetaDescr" type="TextBox"
  55.                 anchor="chkMetaDescr" corner="SW" down="8"
  56.                 width="MAXIMUM"/>
  57.  
  58.  
  59.         </CONTAINER>
  60.  
  61.     </PAGELAYOUT>
  62.  
  63.     <INPUT name="ddDocType" param="sDocType">
  64.     <INPUT name="tbTitle" param="sTitle">
  65.     <INPUT name="chkMetaDescr" param="bMetaDescr">
  66.     <INPUT name="tbMetaDescr" param="sMetaDescr">
  67. </PAGE>
  68.  
  69.  
  70. <!--- attributes page --->
  71. <PAGE name="MetaKeywords" type="DYNAMIC"
  72.     caption="Meta Keywords"
  73.     image="..\\images\\main.bmp">
  74.     
  75.     <PAGELAYOUT>
  76.  
  77.         <CONTROL name="chkMetaKeywords" type="CheckBox"
  78.             caption="Add meta keywords:"
  79.             down="15" right="10"
  80.             width="MAXIMUM"/>
  81.  
  82.         <CONTROL name="taMetaKeywords" type="TextArea"
  83.             anchor="chkMetaKeywords" corner="SW" down="10"
  84.             height="MAXIMUM" width="MAXIMUM"/>
  85.  
  86.  
  87.  
  88.     </PAGELAYOUT>
  89.  
  90.     <INPUT name="chkMetaKeywords" param="bMetaKeywords">
  91.     <INPUT name="taMetaKeywords" param="sMetaKeywords">
  92. </PAGE>
  93.  
  94.  
  95.  
  96. <!--- OUTPUT TEMPLATE --->
  97.  
  98.  
  99. <TEMPLATE
  100.   name="Custom.wml"
  101.   outputFile="MyFile.cfm"
  102.   description="New HTML file"
  103. >
  104.  
  105.  
  106. </WIZARD>